style: Remove depth member from GtkStyle
authorBenjamin Otte <otte@redhat.com>
Sat, 28 Aug 2010 10:08:24 +0000 (12:08 +0200)
committerBenjamin Otte <otte@redhat.com>
Sun, 26 Sep 2010 13:11:31 +0000 (15:11 +0200)
gtk/gtkstyle.c
gtk/gtkstyle.h

index 464b5420ff050e61217f668d3d9d6546a010afc5..7e4172a7f8e27448e741e838d3cabf97d5bfd843 100644 (file)
@@ -402,7 +402,6 @@ gtk_style_init (GtkStyle *style)
   
   style->attach_count = 0;
   style->colormap = NULL;
-  style->depth = -1;
   
   style->black.red = 0;
   style->black.green = 0;
@@ -488,7 +487,7 @@ gtk_style_class_init (GtkStyleClass *klass)
    * @style: the object which received the signal
    *
    * Emitted when the style has been initialized for a particular
-   * colormap and depth. Connecting to this signal is probably seldom
+   * colormap. Connecting to this signal is probably seldom
    * useful since most of the time applications and widgets only
    * deal with styles that have been already realized.
    *
@@ -506,7 +505,7 @@ gtk_style_class_init (GtkStyleClass *klass)
    * @style: the object which received the signal
    *
    * Emitted when the aspects of the style specific to a particular colormap
-   * and depth are being cleaned up. A connection to this signal can be useful
+   * is being cleaned up. A connection to this signal can be useful
    * if a widget wants to cache objects as object data on #GtkStyle.
    * This signal provides a convenient place to free such cached objects.
    *
@@ -775,7 +774,6 @@ gtk_style_realize (GtkStyle    *style,
                    GdkColormap *colormap)
 {
   style->colormap = g_object_ref (colormap);
-  style->depth = gdk_colormap_get_visual (colormap)->depth;
 
   g_signal_emit (style, realize_signal, 0);
 }
index f1c8399b35f1a7f9d1f281cdd0c6377b5264531a..69f52e38203a4afb1bd5274c2ee39a54620e45dd 100644 (file)
@@ -104,7 +104,6 @@ struct _GtkStyle
 
   gint attach_count;
 
-  gint depth;
   GdkColormap *colormap;
   PangoFontDescription *private_font_desc; /* Font description for style->private_font or %NULL */
 
@@ -120,9 +119,9 @@ struct _GtkStyleClass
 {
   GObjectClass parent_class;
 
-  /* Initialize for a particular colormap/depth
-   * combination. style->colormap/style->depth will have
-   * been set at this point. Will typically chain to parent.
+  /* Initialize for a particular colormap. style->colormap
+   * will have been set at this point. Will typically chain
+   * to parent.
    */
   void (*realize)               (GtkStyle               *style);